home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / redakcyjne / programy / Tlen 6.0.1.12 pl / tleninst60112.exe / sdk / TlenSources / plugin / sl_struct.h < prev   
C/C++ Source or Header  |  2006-08-30  |  917b  |  27 lines

  1. //---------------------------------------------------------------------------
  2. #ifndef sl_structH
  3. #define sl_structH
  4. //---------------------------------------------------------------------------
  5.  
  6. #include <windows.h>
  7.  
  8. typedef struct {
  9.  
  10.  int structSize;        //wielko£µ struktury w bajtach
  11.  
  12.  char **strings;
  13.  int count;
  14.  
  15. } StringListDef;
  16.  
  17. typedef int (*sl_init_type)          (StringListDef *s);
  18. typedef int (*sl_add_type)           (StringListDef *s, char *string);
  19. typedef int (*sl_delete_type)        (StringListDef *s, int index);
  20. typedef char * (*sl_get_type)        (StringListDef *s, int index);
  21. typedef int (*sl_find_type)          (StringListDef *s, char *string);
  22. typedef int (*sl_free_type)          (StringListDef *s);
  23. typedef int (*sl_addstrings_type)    (StringListDef *s, StringListDef *strings);
  24. typedef int (*sl_commonpart_type)    (StringListDef *s, StringListDef *cmp);
  25.  
  26. #endif
  27.